From 75a8229c58e1bcbfcc94fa3eed8aa8093c68c360 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Wed, 5 Apr 2006 20:31:31 +0000 Subject: [PATCH] Add missing brackets to comparison ...isdigit(). git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@1820 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/vecs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/vecs.c b/gpsbabel/vecs.c index 37a56c3aa..e0215cfb9 100644 --- a/gpsbabel/vecs.c +++ b/gpsbabel/vecs.c @@ -594,7 +594,7 @@ assign_option(const char *module, arglist_t *ap, const char *val) case 'N': case 'n': c = "0"; break; default: - if isdigit(*c) { + if (isdigit(*c)) { if (*c == '0') c = "0"; else c = "1"; } -- 2.30.2